home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1999 #3 / Amiga Plus CD - 1999 - No. 3.iso / Anwender / Grafik / graphics3d / cube.plg < prev    next >
Text File  |  1998-01-28  |  590b  |  37 lines

  1. ;
  2. ; PLG file contains "cube" object 
  3. ; for Blitz Basic 2 3DLIB demo
  4. ;
  5.  
  6. #HEADER
  7.  
  8. cube 8 6
  9.  
  10. ;vertex list
  11.  
  12. ;  X   Y    Z
  13. ;--------------
  14. ;
  15.  
  16. -50  100 -50
  17.  50  100 -50
  18.  50   0  -50
  19. -50   0  -50
  20. -50  100  50
  21.  50  100  50
  22.  50   0   50
  23. -50   0   50
  24.  
  25. ;polygon list
  26.  
  27. ;color  vertices total    list of vertices
  28. ;-----------------------------------------
  29.   01            4              0 1 2 3
  30.   01            4              1 5 6 2
  31.   01            4              5 4 7 6
  32.   01            4              4 0 3 7
  33.   01            4              3 2 6 7
  34.   01            4              4 5 1 0
  35.  
  36. #END OF PLG
  37.